home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / src / binutils.252 / ld / ldscript / i386aout.xu < prev   
Encoding:
Text File  |  1994-12-17  |  600 b   |  37 lines

  1. OUTPUT_FORMAT("a.out-i386")
  2. OUTPUT_ARCH(i386)
  3. SECTIONS
  4. {
  5.   .text :
  6.   {
  7.     CREATE_OBJECT_SYMBOLS
  8.     *(.text)
  9.     /* The next six sections are for SunOS dynamic linking.  The order
  10.        is important.  */
  11.     *(.dynrel)
  12.     *(.hash)
  13.     *(.dynsym)
  14.     *(.dynstr)
  15.     *(.rules)
  16.     *(.need)
  17.   }
  18.   .data :
  19.   {
  20.     /* The first three sections are for SunOS dynamic linking.  */
  21.     *(.dynamic)
  22.     *(.got)
  23.     *(.plt)
  24.     *(.data)
  25.     *(.linux-dynamic) /* For Linux dynamic linking.  */
  26.     CONSTRUCTORS
  27.   }
  28.   .bss :
  29.   {
  30.    ;
  31.    *(.bss)
  32.    *(COMMON)
  33.    ;
  34.    ;
  35.   }
  36. }
  37.